home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / tiff / tif_strip.c < prev    next >
C/C++ Source or Header  |  1995-06-21  |  4KB  |  115 lines

  1. /* $Header: /usr/people/sam/tiff/libtiff/RCS/tif_strip.c,v 1.16 1994/09/17 23:22:37 sam Exp $ */
  2.  
  3. /*
  4.  * Copyright (c) 1991, 1992, 1993, 1994 Sam Leffler
  5.  * Copyright (c) 1991, 1992, 1993, 1994 Silicon Graphics, Inc.
  6.  *
  7.  * Permission to use, copy, modify, distribute, and sell this software and 
  8.  * its documentation for any purpose is hereby granted without fee, provided
  9.  * that (i) the above copyright notices and this permission notice appear in
  10.  * all copies of the software and related documentation, and (ii) the names of
  11.  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  12.  * publicity relating to the software without the specific, prior written
  13.  * permission of Sam Leffler and Silicon Graphics.
  14.  * 
  15.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  16.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  17.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  18.  * 
  19.  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  20.  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  21.  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  22.  * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  23.  * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  24.  * OF THIS SOFTWARE.
  25.  */
  26.  
  27. /*
  28.  * TIFF Library.
  29.  *
  30.  * Strip-organized Image Support Routines.
  31.  */
  32. #include "tiffiop.h"
  33.  
  34. /*
  35.  * Compute which strip a (row,sample) value is in.
  36.  */
  37. tstrip_t
  38. TIFFComputeStrip(TIFF* tif, uint32 row, tsample_t sample)
  39. {
  40.     TIFFDirectory *td = &tif->tif_dir;
  41.     tstrip_t strip;
  42.  
  43.     strip = row / td->td_rowsperstrip;
  44.     if (td->td_planarconfig == PLANARCONFIG_SEPARATE) {
  45.         if (sample >= td->td_samplesperpixel) {
  46.             TIFFError(tif->tif_name,
  47.                 "%u: Sample out of range, max %u",
  48.                 sample, td->td_samplesperpixel);
  49.             return ((tstrip_t) 0);
  50.         }
  51.         strip += sample*td->td_stripsperimage;
  52.     }
  53.     return (strip);
  54. }
  55.  
  56. /*
  57.  * Compute how many strips are in an image.
  58.  */
  59. tstrip_t
  60. TIFFNumberOfStrips(TIFF* tif)
  61. {
  62.     TIFFDirectory *td = &tif->tif_dir;
  63.     tstrip_t nstrips;
  64.  
  65.     nstrips = (td->td_rowsperstrip == (uint32) -1 ?
  66.          (td->td_imagelength != 0 ? 1 : 0) :
  67.          howmany(td->td_imagelength, td->td_rowsperstrip));
  68.     if (td->td_planarconfig == PLANARCONFIG_SEPARATE)
  69.         nstrips *= td->td_samplesperpixel;
  70.     return (nstrips);
  71. }
  72.  
  73. /*
  74.  * Compute the # bytes in a variable height, row-aligned strip.
  75.  */
  76. tsize_t
  77. TIFFVStripSize(TIFF* tif, uint32 nrows)
  78. {
  79.     TIFFDirectory *td = &tif->tif_dir;
  80.  
  81.     if (nrows == (uint32) -1)
  82.         nrows = td->td_imagelength;
  83. #ifdef YCBCR_SUPPORT
  84.     if (td->td_planarconfig == PLANARCONFIG_CONTIG &&
  85.         td->td_photometric == PHOTOMETRIC_YCBCR) {
  86.         /*
  87.          * Packed YCbCr data contain one Cb+Cr for every
  88.          * HorizontalSampling*VerticalSampling Y values.
  89.          * Must also roundup width and height when calculating
  90.          * since images that are not a multiple of the
  91.          * horizontal/vertical subsampling area include
  92.          * YCbCr data for the extended image.
  93.          */
  94.         tsize_t w =
  95.             roundup(td->td_imagewidth, td->td_ycbcrsubsampling[0]);
  96.         tsize_t scanline = howmany(w*td->td_bitspersample, 8);
  97.         tsize_t samplingarea =
  98.             td->td_ycbcrsubsampling[0]*td->td_ycbcrsubsampling[1];
  99.         nrows = roundup(nrows, td->td_ycbcrsubsampling[1]);
  100.         /* NB: don't need howmany here 'cuz everything is rounded */
  101.         return (nrows*scanline + 2*(nrows*scanline / samplingarea));
  102.     } else
  103. #endif
  104.         return (nrows * TIFFScanlineSize(tif));
  105. }
  106.  
  107. /*
  108.  * Compute the # bytes in a (row-aligned) strip.
  109.  */
  110. tsize_t
  111. TIFFStripSize(TIFF* tif)
  112. {
  113.     return (TIFFVStripSize(tif, tif->tif_dir.td_rowsperstrip));
  114. }
  115.